From: Richard M. Stallman Date: Sat, 7 Dec 2002 21:34:44 +0000 (+0000) Subject: (compilation-enter-directory-regexp-alist) X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~29333 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=03e7bd4a2fd81f71f03fbde1d68f0473fdb27042;p=emacs.git (compilation-enter-directory-regexp-alist) (compilation-leave-directory-regexp-alist): Match byte compiler output. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 5a654870c21..a85551d20d4 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -452,6 +452,8 @@ subexpression.") '( ;; Matches lines printed by the `-w' option of GNU Make. (".*: Entering directory `\\(.*\\)'$" 1) + ;; Matches lines made by Emacs byte compiler. + ("^Entering directory `\\(.*\\)'$" 1) ) "Alist specifying how to match lines that indicate a new current directory. Note that the match is done at the beginning of lines. @@ -464,6 +466,8 @@ The default value matches lines printed by the `-w' option of GNU Make.") '( ;; Matches lines printed by the `-w' option of GNU Make. (".*: Leaving directory `\\(.*\\)'$" 1) + ;; Matches lines made by Emacs byte compiler. + ("^Leaving directory `\\(.*\\)'$" 1) ) "Alist specifying how to match lines that indicate restoring current directory. Note that the match is done at the beginning of lines.